common/lcd_console: fix console/logo regression
authorMarcel Ziswiler <[email protected]>
Tue, 4 Aug 2015 13:49:50 +0000 (15:49 +0200)
committerTom Rini <[email protected]>
Thu, 13 Aug 2015 11:19:34 +0000 (07:19 -0400)
The following commit changed the order of the column vs. row parameter
to the lcd_init_console() function but missed actually changing it as
well the second time it is called from lcd_clear() which resulted in a
garbled text console which this patch fixes.

commit 604c7d4a5a3cf70949f6e6094bf0d52ee3b4804d
common/lcd_console: introduce display/framebuffer rotation

Tested on Colibri T20 with my latest assortment of tegra
fixes/enhancements patch set.

Signed-off-by: Marcel Ziswiler <[email protected]>
Acked-by: Simon Glass <[email protected]>
common/lcd.c

index 5a52fe4287fa7383e8849348bff794f43d6b1138..d29308aeb6a8ab32d5c5f73c91af37f287333e20 100644 (file)
@@ -234,8 +234,8 @@ void lcd_clear(void)
        lcd_logo();
 #if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO)
        addr = (ulong)lcd_base + BMP_LOGO_HEIGHT * lcd_line_length;
-       lcd_init_console((void *)addr, panel_info.vl_row,
-                        panel_info.vl_col, panel_info.vl_rot);
+       lcd_init_console((void *)addr, panel_info.vl_col,
+                        panel_info.vl_row, panel_info.vl_rot);
 #endif
        lcd_sync();
 }